home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 3: Dr. Sid.iso / pc / assets / sid-vehicles&gear.dcr / 00043_button03.ls < prev    next >
Encoding:
Text File  |  2001-07-22  |  458 b   |  21 lines

  1. global checkForSelection
  2.  
  3. on mouseEnter
  4.   set the rect of sprite 51 to the rect of sprite 43
  5. end
  6.  
  7. on mouseLeave
  8.   if checkForSelection = 0 then
  9.     set the loc of sprite 51 to point(-100, -100)
  10.   end if
  11. end
  12.  
  13. on mouseUp
  14.   puppetSound(1, "Clicker")
  15.   set the rect of sprite 51 to the rect of sprite 43
  16.   checkForSelection = 1
  17.   puppetSprite(2, 1)
  18.   set the memberNum of sprite 2 to the number of member "sid03"
  19.   set the loc of sprite 2 to point(400, 240)
  20. end
  21.